home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_09_10
/
9n10024d
< prev
next >
Wrap
Text File
|
1991-08-12
|
479b
|
18 lines
/* --------------------------------------------------------------
FUNCTION PUT_FREE_NODE: The steps to release an active node and add
it to the front of the free list are:
A. Free the space occupied by the node's string. Then insert the node
at the start of the free node list.
-------------------------------------------------------------- */
void put_free_node(Node *pnode)
{
/*A*/ pnode->pfwd = pfree_node;
pfree_node = pnode;
}